mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-12 00:04:31 +02:00
Fix mktemp error in github actions.
This commit is contained in:
@@ -13,7 +13,7 @@ function lcase
|
|||||||
|
|
||||||
function mkindex
|
function mkindex
|
||||||
{
|
{
|
||||||
TMPFILE=$(mktemp -t $(basename $0)) || exit 1
|
TMPFILE=$(mktemp -t $(basename $0).XXXXXX) || exit 1
|
||||||
sed 's/([^)]*)//g' | sed 's/[^a-zA-Z0-9_.:$]//g' | awk -F ':' '{printf "- [%s](%s#%s)\n", $3, $1, $3}' | sort -d -f -u >> $TMPFILE
|
sed 's/([^)]*)//g' | sed 's/[^a-zA-Z0-9_.:$]//g' | awk -F ':' '{printf "- [%s](%s#%s)\n", $3, $1, $3}' | sort -d -f -u >> $TMPFILE
|
||||||
alpha="A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
|
alpha="A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
|
||||||
for a in $alpha; do
|
for a in $alpha; do
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,349];
|
BOSL_VERSION = [2,0,350];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
Reference in New Issue
Block a user