removed tests from deploy

This commit is contained in:
Benoît Sierro
2023-09-28 09:28:12 +02:00
parent 2aabf1a6df
commit 4359358ba2

5
deploy
View File

@@ -1,7 +1,10 @@
#!/usr/bin/env nu
let zipfile = "scgenerator.zip"
let filelist = (git ls-files | lines | where {not ($in | str ends-with ".afphoto")})
let filelist = (git ls-files | lines
| where {not ($in | str ends-with ".afphoto")}
| where {not ($in | str starts-with "tests")}
)
^zip $zipfile $filelist
scp -O $zipfile $"fibnas:/volume1/web/($zipfile)"