Preconditions:
- POSIX or Windows system
- Install Docker
- A GitHub repo that already builds on Travis
Postcondition:
Use to set 755 for all the folders recursively
sudo find . -type d -exec chmod 0755 {} \;
Use to set 644 for all the files recursively
sudo find . -type f -exec chmod 0644 {} \;
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
| const infinityGauntlet = { | |
| powerStone: { | |
| equipped: true, | |
| info: 'Controls all of the power in the universe. It can be used to augment or inhibit any force.', | |
| use() { | |
| if(this.equipped) { | |
| return 'Using super strength to crash the moon and throw it over to the Avengers!!'; | |
| } else { | |
| return 'No power stone!' | |
| } |
OlderNewer