Skip to content

Instantly share code, notes, and snippets.

@hatchan
Created November 3, 2014 10:06
Show Gist options
  • Save hatchan/a944559662b5dc551939 to your computer and use it in GitHub Desktop.
Save hatchan/a944559662b5dc551939 to your computer and use it in GitHub Desktop.
Install ftp during a build or deploy on wercker
build:
steps:
- script:
name: install ftp
code: sudo apt-get update -y && sudo apt-get install ftp -y
deploy:
steps:
- script:
name: install ftp
code: sudo apt-get update -y && sudo apt-get install ftp -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment