Skip to content

Commit 885ab5d

Browse files
committed
Submit version 30
Fixes #36
1 parent 8d74abe commit 885ab5d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ let CHECK_INTERVAL = 60*60; // 1h
4545
let NOTIFY = false;
4646
let HOWMUCH = 0;
4747
let UPDATE_CMD = "ptyxis -- /bin/sh -c \"pkexec dnf upgrade; echo Done - Press enter to exit; read _\" ";
48-
let CHECK_CMD = "/bin/bash -c \"/usr/bin/dnf check-update -yq | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print $1,$2}'\"";
48+
let CHECK_CMD = "/bin/bash -c \"/usr/bin/dnf check-update -yq | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print \$1,\$2}'\"";
4949
let MANAGER_CMD = "";
5050
let PACKAGE_CACHE_DIR = "";
5151
let STRIP_VERSIONS = false;

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"uuid": "[email protected]",
77
"gettext-domain": "[email protected]",
88
"settings-schema": "org.gnome.shell.extensions.fedora-update",
9-
"version": 29
9+
"version": 30
1010
}

prefs.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,15 +253,15 @@
253253
<property name="halign">0</property>
254254
<property name="hexpand">true</property>
255255
<property name="title">dnf 4</property>
256-
<property name="text">"/bin/bash -c \"/usr/bin/dnf check-update --refresh -yq | tail -n +2 | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print $1;$2}'\""</property>
256+
<property name="text">"/bin/bash -c \"/usr/bin/dnf check-update --refresh -yq | tail -n +2 | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print \$1,\$2}'\""</property>
257257
</object>
258258
</child>
259259
<child>
260260
<object class="AdwEntryRow" id="field_checkcmd_dnf5">
261261
<property name="halign">0</property>
262262
<property name="hexpand">true</property>
263263
<property name="title">dnf 5+</property>
264-
<property name="text">"/bin/bash -c \"/usr/bin/dnf check-update -yq | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print $1;$2}'\""</property>
264+
<property name="text">"/bin/bash -c \"/usr/bin/dnf check-update -yq | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print \$1,\$2}'\""</property>
265265
</object>
266266
</child>
267267
<child>

schemas/org.gnome.shell.extensions.fedora-update.gschema.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@
5353
</key>
5454

5555
<key name="check-cmd-dnf4" type="s">
56-
<default>"/bin/bash -c \"/usr/bin/dnf check-update --refresh -yq | tail -n +2 | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print $1,$2}'\""</default>
56+
<default>"/bin/bash -c \"/usr/bin/dnf check-update --refresh -yq | tail -n +2 | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print \$1,\$2}'\""</default>
5757
<summary>Command to run to check for updated packages with dnf 4.</summary>
5858
<description>Command to run to check for updated packages with dnf 4.</description>
5959
</key>
6060

6161
<key name="check-cmd-dnf5" type="s">
62-
<default>"/bin/bash -c \"/usr/bin/dnf check-update -yq | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print $1,$2}'\""</default>
62+
<default>"/bin/bash -c \"/usr/bin/dnf check-update -yq | grep -E 'x86_64|i686|noarch|aarch64' | awk '{print \$1,\$2}'\""</default>
6363
<summary>Command to run to check for updated packages with dnf 5.</summary>
6464
<description>Command to run to check for updated packages with dnf 5.</description>
6565
</key>

0 commit comments

Comments
 (0)