Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
guental authored Oct 21, 2021
1 parent fcab6b4 commit 39c3ec6
Show file tree
Hide file tree
Showing 3 changed files with 456 additions and 0 deletions.
Binary file added db.tbz2
Binary file not shown.
22 changes: 22 additions & 0 deletions make
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/sh
{
dir=""
case "${0}" in
*"/"*)
dir="${0%"/"*}/"
;;
esac
if ! [ -s "${dir}conniechk" ]; then
if cat -- "${dir}shell" "${dir}db.tbz2" > "${dir}conniechk" 2>/dev/null; then
if chmod +x -- "${dir}conniechk" 2>/dev/null; then
echo "make: conniechk: OK"
else
echo "make: conniechk: FAILED"
exit 1
fi
else
echo "make: conniechk: FAILED"
exit 1
fi
fi
}
Loading

0 comments on commit 39c3ec6

Please sign in to comment.