mirror of
https://github.com/Bismuth-Forge/bismuth.git
synced 2024-11-05 00:54:24 +03:00
11 lines
266 B
Bash
11 lines
266 B
Bash
|
#!/usr/bin/env sh
|
||
|
set -e
|
||
|
|
||
|
# Load script to KWin
|
||
|
bin/load-script.sh "$npm_package_config_build_dir/contents/ui/main.qml" \
|
||
|
"$npm_package_name-test"
|
||
|
|
||
|
# Remove unnecessary files
|
||
|
find "$npm_package_config_build_dir" \
|
||
|
'(' -name "*.qmlc" -o -name "*.jsc" ')' -delete
|