Skip to content
Snippets Groups Projects
Verified Commit 3ce99cd7 authored by Leonidas Spyropoulos's avatar Leonidas Spyropoulos
Browse files

Merge branch 'fix-aurweb-run-in-venv' into 'master'

fix: run aurweb ssh commands and git scripts in virtualenv

See merge request !733
parents 67de2b54 21ceb093
No related branches found
No related tags found
1 merge request!733fix: run aurweb ssh commands and git scripts in virtualenv
Pipeline #70962 passed
#!/bin/bash
exec "{{ aurweb_dir }}/.venv/bin/aurweb-git-auth" "$@"
cd "{{ aurweb_dir }}"
source .venv/bin/activate
exec aurweb-git-auth "$@"
#!/bin/bash
exec "{{ aurweb_dir }}/.venv/bin/aurweb-git-serve" "$@"
cd "{{ aurweb_dir }}"
source .venv/bin/activate
exec aurweb-git-serve "$@"
#!/bin/bash
cd "{{ aurweb_dir }}"
exec poetry run aurweb-git-update "$@"
source .venv/bin/activate
exec aurweb-git-update "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment