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