icloud_photos_downloader/scripts/npx_optional

11 lines
166 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
if [ `which npx` ]; then
echo "test icloudpd..." &&
npx ${@:3} &&
touch $1
else
echo "No npx available"
touch $2
fi