diff --git a/conf/types/__file/gencode b/conf/types/__file/gencode index 9d585533..1040875c 100755 --- a/conf/types/__file/gencode +++ b/conf/types/__file/gencode @@ -33,11 +33,11 @@ fi case "$type" in directory) - echo mkdir \"$path\" + echo mkdir \"$destination\" ;; file) - echo touch \"$path\" + echo touch \"$destination\" ;; *) @@ -48,5 +48,5 @@ esac if [ -f mode ]; then mode="$(cat mode)" - echo chmod \"$mode\" \"$path\" + echo chmod \"$mode\" \"$destination\" fi