npm install --save-dev ftps- Add
deploy.jsto theme/plugin root - Add
deploy.config.jsto theme/plugin root - Modify config.
- Set up Circle CI with
SFTP_HOST SFTP_PASS SFTP_USERenvironmental variables
| #!/bin/bash | |
| # This is the target directory of the repo we are merging another repo into. (wp-content) | |
| echo $1; | |
| # This is the slug of what we are merging, used for directory and branch names (e360-fix-links) | |
| echo $2; | |
| # This is the remote url of the git directory (https://christianchung10up@bitbucket.org/wallstcheatsheet/e360-fix-links.git) | |
| echo $3 |
| ### Keybase proof | |
| I hereby claim: | |
| * I am christianc1 on github. | |
| * I am christianc10up (https://keybase.io/christianc10up) on keybase. | |
| * I have a public key ASC8Gt3hO4wqKMnzwg7FwWXIHYnl6_FE9ZyiG8zvdfHGRwo | |
| To claim this, I am signing this object: |
| ... | |
| test: | |
| override: | |
| - $(which php) package-statuses.php | |
| ... |
| // Buddy's Homework | |
| #include <iostream> | |
| #include <string> | |
| using namespace std; | |
| int main() { | |
| // Init variable | |
| string passCode; |
| int main() { | |
| int givenyear = 0; | |
| givenYear = 1776; | |
| if ( givenYear >= 2100 ) { | |
| cout<<"Distant future"; | |
| } | |
| else if( givenYear >= 2000 ) { | |
| cout<<"21st century"; |