summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOdin Vex2022-05-17 20:54:33 -0400
committerOdin Vex2022-05-17 20:54:33 -0400
commit9ad49dfcdaca068fe7df6dafc431f8423b0dbdfd (patch)
tree5e8eea6c77f6d5f92227c33940210e31dfc6d7fd
parent63f19764de860519bf72a50bd08c6be9a7e99216 (diff)
downloadaur-9ad49dfcdaca068fe7df6dafc431f8423b0dbdfd.tar.gz
Fix typo on install from 'sudo' to 'export'
Signed-off-by: Odin Vex <odin.vex@ethicalexploiting.com>
-rw-r--r--.SRCINFO2
-rwxr-xr-xCHANGELOG2
-rwxr-xr-xPKGBUILD2
-rwxr-xr-xmint-artwork.install4
4 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d29472fdb52f..bb8a21056e68 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -2,7 +2,7 @@ pkgbase = mint-artwork
pkgdesc = Linux Mint Artwork and Resources.
pkgver = 1.5.7
pkgrel = 0
- epoch = 1
+ epoch = 2
url = http://packages.linuxmint.com/pool/main/m/mint-artwork
install = mint-artwork.install
changelog = CHANGELOG
diff --git a/CHANGELOG b/CHANGELOG
index bd92ededd2f0..c6f31dda31cc 100755
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,5 @@
+Fix typo on install from 'sudo' to 'export'
+Remove quotes around paths
1.5.7 - Updated to 1.5.7 Upstream
Discovered official method to restart Cinnamon, updated
Switched method for restarting Cinnamon to nohup, fixed INSTALL & conflicts
diff --git a/PKGBUILD b/PKGBUILD
index d2c3e986f2af..ab93e6443d23 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=mint-artwork
pkgver=1.5.7
pkgrel=0
-epoch=1
+epoch=2
pkgdesc="Linux Mint Artwork and Resources."
arch=("any")
url="http://packages.linuxmint.com/pool/main/m/${pkgname}"
diff --git a/mint-artwork.install b/mint-artwork.install
index 8926dfbb07a4..d8f9ffaf74fb 100755
--- a/mint-artwork.install
+++ b/mint-artwork.install
@@ -13,8 +13,8 @@ post_remove() {
}
restart_Cinnamon() {
- sudo DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/${SUDO_UID}/bus"
+ export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/${SUDO_UID}/bus"
sudo -u "#${SUDO_UID}" -H dbus-send --bus=$DBUS_SESSION_BUS_ADDRESS \
--type=method_call --dest=org.Cinnamon /org/Cinnamon \
org.Cinnamon.RestartCinnamon boolean:false 2> /dev/null
-} \ No newline at end of file
+}