We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 575a26f commit 6d3915aCopy full SHA for 6d3915a
scripts/extension-registry-changed
@@ -40,9 +40,9 @@ EOF
40
scriptdir="$(dirname "$(readlink -f "$0")")"
41
docfile="$scriptdir/../docs/sources/next/extensions/explore.md"
42
43
-tmpfile=/tmp/explore.$$
+tmpfile="$(mktemp)"
44
45
-generate_extension_list_partial > $tmpfile
46
-replace_extension_list_partial "$docfile" $tmpfile
+generate_extension_list_partial > "$tmpfile"
+replace_extension_list_partial "$docfile" "$tmpfile"
47
48
-rm -f $tmpfile
+rm -f "$tmpfile"
0 commit comments