mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
Snapcraft can find its build recipes in 2 places: * a snap/ directory at the top of the sources; * a build-aux/snap/ directory, since Snapcraft 3.3; This commit moves from the former to the latter, so that we can group all the packaging recipes together.
7 lines
99 B
Bash
Executable File
7 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p "$HOME/.qet"
|
|
ln -snf "$SNAP/bin/DXFtoQET" "$HOME/.qet/DXFtoQET"
|
|
|
|
exec "${@}"
|