This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
# function to easily determine if a set of programs and files are available. | |
function deploy_programs_available { | |
local programs=(npm bower grunt) | |
local files=(package.json bower.json Gruntfile.js) | |
for p in ${programs[@]}; do |
NewerOlder