This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
HelloWorld/brew/do
TruncatedDinosour e61739d4f1
Create do
2021-11-27 06:11:49 +08:00

11 lines
120 B
Bash

#!/bin/bash
set -e
SRC=$(dirname $0)
cd $SRC
ARG=${1:-""}
case $ARG in
build)
echo "Hello, world" ;;
esac