summaryrefslogtreecommitdiffstats
path: root/src/oh-installfiles
diff options
context:
space:
mode:
Diffstat (limited to 'src/oh-installfiles')
-rw-r--r--src/oh-installfiles4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/oh-installfiles b/src/oh-installfiles
index ebd3f38..2297e53 100644
--- a/src/oh-installfiles
+++ b/src/oh-installfiles
@@ -44,10 +44,10 @@ while [ ${#} -gt 0 ]; do
# Ensure that the full directory path of the pattern exists in the
# package staging area.
pattern_dir=$(dirname ${pattern})
- mkdir -p ${1}/${pattern_dir}
+ mkdir -p ${1}.data/${pattern_dir}
# Move any matching files from the installation destination to the
# package staging area.
- mv dest/${pattern} ${1}/${pattern_dir}
+ mv dest/${pattern} ${1}.data/${pattern_dir}
done < ../${1}.pkg/install
shift
done