Removed tests, because they should have been done in git-cli.

This commit is contained in:
2026-08-18 23:06:58 +02:00
parent 1cc55cbc51
commit 4cc585c8c6
5 changed files with 51 additions and 71 deletions
+15 -11
View File
@@ -5,11 +5,11 @@
package-zipper
"main.rkt")
(makefile rash-git-cli
(target all
(makefile 'rash-git-cli
(target 'all
(displayln "make clean, make zip, make status, make sync"))
(target clean
(target 'clean
(for-each (λ (f) (displayln f) (rm-f f))
(list-files "." #px"([.]bak|~)$" #:recursive #t))
(for-each (λ (d) (displayln d) (rm-rf d))
@@ -19,26 +19,30 @@
(list-files "scribblings" #px"[.](css|js|html)$")))
)
(target zip
(deps clean)
(target 'ver
(displayln (git 'next-version))
)
(target 'zip
(deps 'clean)
(zip-package #:exclude '(".git" ".gitignore")))
(target status
(target 'status
{
git status
})
})
(target sync
(target 'sync
{
git status
git add -A
git commit
git push
})
})
(target pull
(target 'pull
{
git pull
})
})
)