Skip to content
Snippets Groups Projects
Unverified Commit dbddb142 authored by G.J.R. Timmer's avatar G.J.R. Timmer Committed by Dominique Marcadet
Browse files

Fix shellcheck warnings

parent 95f0f8de
No related branches found
No related tags found
No related merge requests found
...@@ -22,14 +22,14 @@ if [ -f "/usr/bin/find" ] && [ -f "/usr/bin/xargs" ]; then ...@@ -22,14 +22,14 @@ if [ -f "/usr/bin/find" ] && [ -f "/usr/bin/xargs" ]; then
# Split workload between config and workspace # Split workload between config and workspace
echo "setting permissions::configuration" echo "setting permissions::configuration"
CORES=$(nproc --all) CORES=$(nproc --all)
find /config -maxdepth 4 -mindepth 1 -path /config/workspace -prune -false -o -type d | \ find /config -maxdepth 4 -mindepth 1 -path /config/workspace -prune -false -o -type d -print0 | \
xargs --max-args=1 --max-procs=$(($CORES*2*8)) \ xargs --max-args=1 --max-procs=$((CORES*2*8)) \
chown -R abc:abc chown -R abc:abc
echo "setting permissions::workspace" echo "setting permissions::workspace"
chown abc:abc /config/workspace chown abc:abc /config/workspace
find /config/workspace -maxdepth 4 -mindepth 1 -type d | \ find /config/workspace -maxdepth 4 -mindepth 1 -type d -print0 | \
xargs --max-args=1 --max-procs=$(($CORES*2*16)) \ xargs --max-args=1 --max-procs=$((CORES*2*16)) \
chown -R abc:abc chown -R abc:abc
else else
chown -R abc:abc \ chown -R abc:abc \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment