Cosimo Matteini
Cosimo Matteini
Hi @candrapersada! > is there any support or way to use --install for .7z files? Currently no, but I think it can be added. Can you share repositories that distribute...
Hi @candrapersada! You can download latest release [0.6.3](https://github.com/devmatteini/dra/releases/tag/0.6.3) to install from 7-Zip files. In order to work, you need to install `7z` and make sure it's available in your `PATH`....
- You download `dra` the same way as the first time (https://github.com/devmatteini/dra#installation) - You can use `dra` to update itself: ```shell dra download -a -i devmatteini/dra ./dra --version # should...
I don't think so. The way you update `dra` depends on how you installed it, and `dra` doesn't know how you installed it. If you used a package manager, like...
I suppose you are in this directory: `C:\Users\Username\bin` where dra is located. You cannot replace dra with a new version while the dra process is running. You need to go...
I use this on linux for the first time dra installation: https://github.com/devmatteini/dotfiles/blob/7fe2d8af46e21364386c8bbc9850576226ed2289/bootstrap/dependencies.sh#L18-L23 You can modify it to work on windows. To update it I use `dra download -a -i devmatteini/dra...
In git bash you can use it like this: ``` curl -s https://api.github.com/repos/devmatteini/dra/releases/latest \ | grep "browser_download_url.*x86_64-pc-windows-msvc" \ | cut -d : -f 2,3 \ | tr -d \" \...
If you use a .sh file, use the above script: ``` curl -s https://api.github.com/repos/devmatteini/dra/releases/latest \ | grep "browser_download_url.*x86_64-pc-windows-msvc" \ | cut -d : -f 2,3 \ | tr -d \"...
```shell function download_dra() { filename=$1 TMP_DIR=$(mktemp --directory) ARCHIVE="$TMP_DIR/dra.zip" curl -s https://api.github.com/repos/devmatteini/dra/releases/latest \ | grep "browser_download_url.*x86_64-pc-windows-msvc" \ | cut -d : -f 2,3 \ | tr -d \" \ | xargs...
You should search that question on google: https://stackoverflow.com/questions/592620/how-can-i-check-if-a-program-exists-from-a-bash-script If you have questions related to `dra` I will help you further, otherwise sorry but I don't have time to help you.