|
|
@ -28,9 +28,20 @@ type="$(cat "$__object/parameter/type")" |
|
|
|
if [ -f "$__object/parameter/destination" ]; then |
|
|
|
if [ -f "$__object/parameter/destination" ]; then |
|
|
|
destination="$(cat "$__object/parameter/destination")" |
|
|
|
destination="$(cat "$__object/parameter/destination")" |
|
|
|
else |
|
|
|
else |
|
|
|
destination="$__object_id" |
|
|
|
# If no destination has been supplied, the id is the destination |
|
|
|
|
|
|
|
# Prepend /, which got lost in the object id (and relative paths |
|
|
|
|
|
|
|
# don't make sense) |
|
|
|
|
|
|
|
destination="/$__object_id" |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Ensure we have an absolute path |
|
|
|
|
|
|
|
if ! $(echo "$destination" | grep -q ^/); then |
|
|
|
|
|
|
|
echo "Error: Destination ($destination) of $__object_id is not absolute." >&2 |
|
|
|
|
|
|
|
exit 1 |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# FIXME: Add file copying part here |
|
|
|
|
|
|
|
|
|
|
|
case "$type" in |
|
|
|
case "$type" in |
|
|
|
directory) |
|
|
|
directory) |
|
|
|
echo mkdir \"$destination\" |
|
|
|
echo mkdir \"$destination\" |
|
|
|