mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Fix mktemp error in github actions.
This commit is contained in:
parent
fa277d1fd3
commit
f2af703240
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ function lcase
|
|||
|
||||
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
|
||||
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
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,349];
|
||||
BOSL_VERSION = [2,0,350];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue