icloud_photos_downloader/scripts/npx_optional_touch

11 lines
174 B
Bash
Executable File

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