mirror of
https://github.com/natelandau/shell-scripting-templates.git
synced 2025-11-09 13:43:46 -05:00
13 lines
188 B
Bash
Executable File
13 lines
188 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -f "../lib/utils.sh" ]; then
|
|
source "../lib/utils.sh"
|
|
else
|
|
echo "You must have utils.sh to run. Exiting."
|
|
exit 0
|
|
fi
|
|
|
|
# Confirm we have Dropbox
|
|
hasDropbox
|
|
|