108166f640
Co-authored-by: Alexander Hass <4450722+alexhass@users.noreply.github.com>
15 lines
268 B
Bash
15 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}"
|