Skip to content

Commit

Permalink
Fix: Remove target dir after compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephira58 authored Sep 16, 2023
1 parent ffe05e1 commit 006c382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Vault GUI is a very small lightweight application designed to mimic a basic bank
Easycompile is a small script for windows, linux, and macos that'll fetch the most up to date version of the application (master branch) and compile it locally. Downloading all neccarry components to compile the application
### 🪟Windows (Powershell) (Untested)
```
winget install Git.Git; winget install Rustlang.Rustup; cd ~; git clone https://github.com/Xanthus58/vault_gui; cd vault_gui; cargo build --release; cd .\target\release; mv vault_gui.exe ..\..\; cd ..\..\; .\vault_gui.exe
winget install Git.Git; winget install Rustlang.Rustup; cd ~; git clone https://github.com/Xanthus58/vault_gui; cd vault_gui; cargo build --release; cd .\target\release; mv vault_gui.exe ..\..\; cd ..\..\; rm -r .\target\; .\vault_gui.exe
```

### 🐧Linux (Debian+) (Untested)
Expand All @@ -30,5 +30,5 @@ WIP

### 🍎Macos (Untested)
```
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; brew install git; brew install rust; cd ~; git clone https://github.com/Xanthus58/vault_gui; cd vault_gui; rustup-init; cargo build --release; cd ./target/release; mv vault_gui ../../; cd ../..; ./vault_gui;
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; brew install git; brew install rust; cd ~; git clone https://github.com/Xanthus58/vault_gui; cd vault_gui; rustup-init; cargo build --release; cd ./target/release; mv vault_gui ../../; cd ../..; rm -r .\target\; ./vault_gui;
```

0 comments on commit 006c382

Please sign in to comment.