16 lines
268 B
Bash
16 lines
268 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
CALLER_DIR=$( pwd )
|
||
|
|
||
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
||
|
|
||
|
7z x -y TXT2RTF.zip
|
||
|
|
||
|
LICENSE=$( powershell.exe -Command "[System.IO.Path]::GetFullPath( '../../../vscode/LICENSE.txt' )" )
|
||
|
|
||
|
"./TXT to RTF Converter.exe" "${LICENSE}"
|
||
|
|
||
|
cd "${CALLER_DIR}"
|