Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Jun 24, 2024
1 parent 5c02e0e commit 3af9c9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies 📦
run: sudo apt-get update -y && sudo apt-get install -y dbus dbus-user-session inkscape
run: |
sudo apt-get update -y
sudo apt-get install -y inkscape
- name: Install requirements 📦
run: |
python3 -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion scripts/wws_manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ case $1 in
for svg in $SVG_FILES
do
BASENAME=`basename $svg .svg`
dbus-run-session inkscape -f $svg -e $PNG_DIR/$BASENAME.png --g-fatal-warnings -l
inkscape --export-type=png --export-filename=$PNG_DIR/$BASENAME.png $svg -l
status=$?
if [ $status -ne 0 ]; then
COUNTER=$((COUNTER+1))
Expand Down

0 comments on commit 3af9c9f

Please sign in to comment.