-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🔩 chore: Mozart integration #153
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -44,7 +44,7 @@ npm run build | |||||
|
||||||
# Copy all files | ||||||
status "Copying files... ✌️" | ||||||
FILES=(wepos.php readme.txt assets includes languages templates composer.json composer.lock) | ||||||
FILES=(wepos.php readme.txt assets dependencies includes languages templates composer.json composer.lock) | ||||||
|
||||||
for file in ${FILES[@]}; do | ||||||
cp -R $file $BUILD_DIR | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Double quote this variable to prevent globbing and word splitting. - cp -R $file $BUILD_DIR
+ cp -R "$file" "$BUILD_DIR" Shellcheck warnings SC2086: Double quote to prevent globbing and word splitting. Committable suggestion
Suggested change
ToolsShellcheck
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Double quote array expansions to prevent issues.
Shellcheck warning SC2068: Double quote array expansions to avoid re-splitting elements.
Committable suggestion
Tools
Shellcheck