Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
chore: make sure names with dashes won't become options
Browse files Browse the repository at this point in the history
Fixes #3
  • Loading branch information
adil192 committed Mar 24, 2023
1 parent f3c4094 commit 14a2d44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ ${SYS_PATH}/apps/loffice365.sh ${URL} \"\$@\"

# Make shortcuts
cd "${SYS_PATH}/apps"
for APP in $(find * -type d); do
configureApp ${APP}
for APP in $(find ./* -type d); do
configureApp ${APP:2}
done

0 comments on commit 14a2d44

Please sign in to comment.