From 1284d3ec1130af37b45432cc5a7a2869154fc6d6 Mon Sep 17 00:00:00 2001 From: Botspot Date: Mon, 30 Aug 2021 12:32:51 -0500 Subject: [PATCH] snap store script: fix typo thanks to Itai Nelken --- apps/Snap Store/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Snap Store/install b/apps/Snap Store/install index ed6cc27..3ece2da 100755 --- a/apps/Snap Store/install +++ b/apps/Snap Store/install @@ -13,7 +13,7 @@ sudo apt install -y snapd || error "APT failed to install snapd" sudo systemctl enable --now snapd.socket || error "Unable to enable snapd.socket" sudo systemctl start snapd.service -if [ !? != 0 ];then +if [ $? != 0 ];then echo "Unable to start snapd.service. Running debug..." echo "Running 'systemctl status snapd.service'" systemctl status snapd.service