Skip to content
Snippets Groups Projects
Verified Commit 6b18a110 authored by Pea Nut's avatar Pea Nut
Browse files

Add "un/install dev target for linux" to Makefile

`bitmask-root` needs to be in in the path (/usr/local/bin did not work). Maybe I overlook something here, but this seems required to get the dev environment up and running.
This is currently how I run/debug things:

```
make vendor (required only once)
make build && make install_dev_linux && DEBUG=1 LEAP_DRYRUN=1 build/qt/release/riseup-vpn --no-systray
```
parent ec3f2714
Branches
Tags
1 merge request!169Add "un/install dev target for linux" to Makefile
......@@ -448,3 +448,9 @@ generate_locales:
get_%:
@curl -L -X GET --user "api:${API_TOKEN}" "https://www.transifex.com/api/2/project/bitmask/resource/bitmask-desktop/translation/${subst -,_,$*}/?file" > gui/i18n/main_$*.ts
install_dev_linux:
@sudo install -m 0755 pkg/pickle/helpers/bitmask-root /usr/bin/bitmask-root
uninstall_dev_linux:
@sudo rm -rf /usr/bin/bitmask-root
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment