make.sh 268 B

123456789101112131415
  1. #!/bin/bash
  2. set -ex
  3. CALLER_DIR=$( pwd )
  4. cd "$( dirname "${BASH_SOURCE[0]}" )"
  5. 7z x -y TXT2RTF.zip
  6. LICENSE=$( powershell.exe -Command "[System.IO.Path]::GetFullPath( '../../../vscode/LICENSE.txt' )" )
  7. "./TXT to RTF Converter.exe" "${LICENSE}"
  8. cd "${CALLER_DIR}"