From 588c94a64f6fcf9a80408a8baa8680fd08d934f6 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 13 Apr 2017 12:38:54 -0500 Subject: [PATCH] chore: fix debian package run script (#1290) The rc2 debian package is not working because the path where the package files is installed has changed. The change in paths comes from an upstream change in the electron-installer-debian node package. So, updating the path here to match the actuall install location. --- scripts/build/debian/etcher-electron.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/debian/etcher-electron.sh b/scripts/build/debian/etcher-electron.sh index 56d6d49f..5ecb6d54 100755 --- a/scripts/build/debian/etcher-electron.sh +++ b/scripts/build/debian/etcher-electron.sh @@ -1,4 +1,4 @@ #!/bin/sh export ETCHER_DISABLE_UPDATES=1 -/usr/share/etcher-electron/etcher "$@" +/usr/lib/etcher-electron/etcher "$@"