lupt/bin/detect

10 lines
146 B
Bash
Executable File

#!/bin/sh
# this pack is valid for apps with a hello.txt in the root
if [ -f $1/cargo.toml ]; then
echo "Rust Actix"
exit 0
else
exit 1
fi