Corrected misconfigurations (now hmacenv is ignored and added to the current directory; first run also cd in the right directory)

This commit is contained in:
tcsenpai 2024-02-08 18:55:29 +01:00
parent a914f17004
commit 8b2deee354
3 changed files with 3 additions and 14 deletions

13
.gitignore vendored
View File

@ -2,7 +2,7 @@
.keyfile .keyfile
test test
test_* test_*
hmaenv hmacenv
__pycache__ __pycache__
public_key.pem public_key.pem
*.pem *.pem
@ -10,15 +10,4 @@ decrypted.txt
encrypted.txt encrypted.txt
*.enc *.enc
*.dec *.dec
x86_64*
conda-meta
compiler_compat
include
man
share
ssl
cp.png
*.part *.part
large_file_encryptor.py
bin
lib

View File

@ -1,3 +1,3 @@
#!/bin/bash #!/bin/bash
cd bins || exit cd src/bins || exit
./first_run ./first_run

2
install.sh Normal file → Executable file
View File

@ -1,2 +1,2 @@
#!/bin/bash #!/bin/bash
conda env create -f environment.yml -p . conda env create -f environment.yml -p ./hmacenv