9 lines
192 B
Bash
9 lines
192 B
Bash
#!/bin/bash
|
|
|
|
# Get script directory (without using /usr/bin/realpath)
|
|
THIS_DIR=$(cd `dirname "${BASH_SOURCE[0]}"` && pwd)
|
|
|
|
pushd $THIS_DIR
|
|
pyside2-rcc -o resource.py resource.qrc
|
|
popd
|