Skip to content

Commit b4b679d

Browse files
committed
fix rpm spec path reference
1 parent 3efaec2 commit b4b679d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Show Build Versions
2424
run: ./gradlew -v
2525
- name: Build with Gradle
26-
run: ./gradlew -i jpackage
26+
run: ./gradlew jpackage
2727
- name: Package zip distribution
2828
if: ${{ runner.os == 'Windows' || runner.os == 'macOS' }}
2929
run: ./gradlew packageZipDistribution

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jlink {
288288
} else {
289289
installerOptions += ['--resource-dir', 'src/main/deploy/package/linux/', '--linux-shortcut', '--linux-menu-group', 'Sparrow']
290290
}
291-
installerOptions += ['--verbose', '--linux-app-category', 'utils', '--linux-app-release', '1', '--linux-rpm-license-type', 'ASL 2.0', '--linux-deb-maintainer', 'mail@sparrowwallet.com']
291+
installerOptions += ['--linux-app-category', 'utils', '--linux-app-release', '1', '--linux-rpm-license-type', 'ASL 2.0', '--linux-deb-maintainer', 'mail@sparrowwallet.com']
292292
imageOptions += ['--icon', 'src/main/deploy/package/linux/Sparrow.png', '--resource-dir', 'src/main/deploy/package/linux/']
293293
}
294294
if(os.macOsX) {

src/main/deploy/package/linux/sparrow.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ sed -i -e 's/.*/%dir "&"/' %{package_filelist}
6969
%if "x%{_rpmdir}/../../LICENSE" != "x"
7070
sed -i -e 's|"%{license_install_file}"||' -e '/^$/d' %{package_filelist}
7171
%endif
72-
install -D -m 644 %{_sourcedir}/opt/sparrow/lib/runtime/conf/udev/*.rules %{buildroot}/etc/udev/rules.d
72+
install -D -m 644 %{_sourcedir}/opt/sparrow/lib/runtime/conf/udev/*.rules /etc/udev/rules.d
7373
echo "/etc/udev/rules.d/20-hw1.rules" >> %{package_filelist}
7474
echo "/etc/udev/rules.d/51-coinkite.rules" >> %{package_filelist}
7575
echo "/etc/udev/rules.d/51-trezor.rules" >> %{package_filelist}

0 commit comments

Comments
 (0)