Remove argument seperator

This commit is contained in:
Shivangi Shree
2026-08-04 11:20:18 +05:30
parent 1b7bb56103
commit ebcd2443a0
7 changed files with 16 additions and 15 deletions
+3 -3
View File
@@ -2,6 +2,6 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
npm run ci:audit
npm run ci:licenses
npm run ci:changelog
pnpm ci:audit
pnpm ci:licenses
pnpm ci:changelog
+4 -4
View File
@@ -35,15 +35,15 @@ update(){
eval libsWithVersions=( "${libsWithVersions[@]}" "${EXACT_VERSION}" )
done
echo "npm i --ignore-scripts -E ${libsWithVersions[*]}"
npm i --ignore-scripts -E ${libsWithVersions[*]}
echo "pnpm add --ignore-scripts -E ${libsWithVersions[*]}"
pnpm add --ignore-scripts -E ${libsWithVersions[*]}
}
update_js_api(){
eval jsWithVersions=();
echo "npm i --ignore-scripts -E @alfresco/js-api@${JS_VERSION}"
npm i --ignore-scripts -E @alfresco/js-api@${JS_VERSION}
echo "pnpm add --ignore-scripts -E @alfresco/js-api@${JS_VERSION}"
pnpm add --ignore-scripts -E @alfresco/js-api@${JS_VERSION}
}
while [[ $1 == -* ]]; do