feat(deploy): allow deploying all hosts
ptr.pet 4 months ago 0c7ffc80 6ce6e5d3
··· 151 151 } 152 152 } 153 153 154 154 - deploy $hostname 154 154 + if $hostname == "all" { 155 155 + $hosts | columns | each {|host| deploy $host} 156 156 + } else { 157 157 + deploy $hostname 158 158 + } 155 159 156 160 if $inputs_updated { 157 161 try { git push }