mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-05-30 17:33:26 +00:00
13 lines
247 B
Bash
Executable File
13 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_dir=`cd $(dirname $0); pwd`
|
|
|
|
if [ "$#" -lt "1" ]; then
|
|
echo "USAGE: $0 <ABSOLUTE PATH TO CERT.PFX> [License Gen args...]"
|
|
exit 1
|
|
fi
|
|
cert_path=$1
|
|
shift
|
|
docker run -it -v "$cert_path:/cert.pfx" bitbetter/licensegen "$@"
|
|
|