16 lines
196 B
Bash
Executable file
16 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
echo "checks compile"
|
|
cd pcap_analyzer
|
|
cargo build
|
|
cd ..
|
|
|
|
|
|
echo "pushing"
|
|
git add .
|
|
git commit -m "dm secu"
|
|
git push
|
|
|