Skip to content

Commit

Permalink
Merge pull request #112 from barriosnahuel/feature/better-readme
Browse files Browse the repository at this point in the history
Add curl in README to get latest release from CMD
  • Loading branch information
barriosnahuel authored Mar 15, 2020
2 parents ed37637 + be1c5bc commit d30e91d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ So you will have 3 tabs:
- One for `efu.log` output. ⇐ *Full script output.*
- One for `summary.efu.log` output. ⇐ *Most cases this will be enough.*

Tip: For CMD lovers...

```
curl -OJ https://codeload.github.com/barriosnahuel/efu/zip/v2.4.2 \
&& unzip efu-2.4.2.zip \
&& rm -rf efu-2.4.2.zip \
&& cd efu-2.4.2 \
&& sh install.sh ubuntu
```

## What does EFU do for me?
With a little of your interaction, EFU will:
- Create a directories tree under ~/Coding for coders.
Expand Down
2 changes: 1 addition & 1 deletion modules/oh-my-zsh/oh-my-zsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/mas
postInstallationLog "Oh-My-ZSH"

addToShell "# DEFAULT_USER env var is used to prevent showing the user@machine in some ZSH themes. i.e.: agnoster"
addToShell "export DEFAULT_USER=$MACHINE_USER"
addToShell "export DEFAULT_USER=$USER"

logInfo "Adding custom GIT info to the terminal"
cp modules/oh-my-zsh/custom-git.zsh ~/.oh-my-zsh/custom/ &&
Expand Down
5 changes: 0 additions & 5 deletions properties.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
#!/bin/bash
# Created by Nahuel Barrios on 24/3/16.

#########################################
#### Used for some Oh-My-ZSH themes ####
#########################################
MACHINE_USER="nbarrios"

#########################################
#### Will be used for in GIT module. ####
#########################################
Expand Down

0 comments on commit d30e91d

Please sign in to comment.