Makes the install and import scripts reference the user\'s home directory instead of the parent directory.
This commit is contained in:
@@ -8,7 +8,7 @@ cd "$SCRIPT_DIR" || exit 1
|
||||
# Copy files and directories
|
||||
for file in "${INSTALL_FILES[@]}"; do
|
||||
if [ -e "./$file" ] || [ -L "./$file" ]; then
|
||||
cp -r "./$file" ../
|
||||
cp -r "./$file" "$HOME/"
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user