Arc-39-theme/common/gtk-3.0/3.18/render-assets.sh

13 lines
297 B
Bash
Raw Normal View History

2018-08-05 02:42:22 +02:00
#!/bin/bash
set -ueo pipefail
2015-08-18 15:30:26 +02:00
2018-08-05 02:42:22 +02:00
# Make sure that parallel is GNU parallel and not moreutils.
# Otherwise, it fails silently. There's no smooth way to detect this.
if [[ "$(which parallel 2> /dev/null)" ]]; then
cmd=(parallel)
2015-08-18 15:30:26 +02:00
else
2018-08-05 02:42:22 +02:00
cmd=(xargs -n1)
2015-08-18 15:30:26 +02:00
fi
2018-08-05 02:42:22 +02:00
"${cmd[@]}" ./render-asset.sh < assets.txt