mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-05-24 14:33:26 +00:00
* Initial work * Fix typo * Fix typo * Fix stupid issue * Add comments and fix minor issues * Add extra information * Add Linux script for generating keys * Add circleci * Add comments * Add extra option * Add missing permissions and empty script for now * Fix line endings * Add missing mount point * Simplify patch * Fix scripts * Reduce complexity * Fix circleci * Remove useless line * Move to src folder and improve image creation
17 lines
327 B
Bash
Executable File
17 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "USAGE: <License Gen action> [License Gen args...]"
|
|
echo "ACTIONS:"
|
|
echo " interactive"
|
|
echo " user"
|
|
echo " org"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "interactive" ]; then
|
|
docker run -it --rm bitbetter/licensegen interactive
|
|
else
|
|
docker run --rm bitbetter/licensegen "$@"
|
|
fi
|