mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 03:04:34 +00:00
8 lines
117 B
Bash
Executable File
8 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function join_by { local IFS="$1"; shift; echo "$*"; }
|
|
|
|
var=$(join_by , $@)
|
|
cqtdeployer $var -bin $var
|
|
|