Warrant canaries are a security industry standard for ensuring our network has not been compromised.
https://en.wikipedia.org/wiki/Warrant_canary
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
399 B
24 lines
399 B
pkgdirname != basename `git config remote.origin.url` | sed 's/.git$$//' |
|
|
|
compile: |
|
@echo Nothing to do |
|
|
|
install: clean |
|
mkdir -p ${pkgdir}/opt/aninix/${pkgdirname}/ |
|
rsync -avzp ./*canary* ${pkgdir}/opt/aninix/${pkgdirname}/ |
|
|
|
test: compile |
|
python3 -m pytest |
|
|
|
clean: |
|
cat .gitignore | xargs rm -Rf |
|
|
|
diff: |
|
@echo Nothing to do. |
|
|
|
reverse: |
|
@echo Nothing to do. |
|
|
|
checkperm: |
|
@echo Nothing to do. |
|
|
|
|