Compare commits

...

2 commits

Author SHA1 Message Date
timoxa0 39d34c3f5b .gitignore: Remove packages/ 2024-11-03 11:16:13 +05:00
timoxa0 6670aa771b functions: Fix packages not found error 2024-11-03 11:15:51 +05:00
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View file

@ -3,4 +3,3 @@ cache/
raw/ raw/
out/ out/
tmp/ tmp/
packages/

View file

@ -51,7 +51,7 @@ prepare_env()
mkdir_if_not_exists "./raw" mkdir_if_not_exists "./raw"
mkdir_if_not_exists "./tmp" mkdir_if_not_exists "./tmp"
[ ! -d "./packages" ] && { [ ! -d "./packages" ] && {
log "Packages not found. Cannot continue" log "Packages not found. Cannot continue" error
exit 4 exit 4
} }
} }