Skip to content

Instantly share code, notes, and snippets.

View manwe651's full-sized avatar

Kyle Kopps manwe651

View GitHub Profile
#!/usr/bin/env bash
echo 'Installing Package 1: Contacts & Organizations...'
sfdx force:package:install -i 04t80000000gYcf -w 100
if [ "$?" = "0" ]; then
echo 'Installation of Package 1 complete...'
else
echo 'Installation failed.'
exit 1
fi