mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-05 17:15:43 +00:00
13 lines
148 B
Bash
Executable file
13 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
version=`date +"%Y.%m.%d"`
|
|
|
|
nuspec="gitlab-ci/SDL2-CS.nuspec"
|
|
|
|
sed -i -e "s/%version%/$version/g" $nuspec
|
|
|
|
nuget pack $nuspec
|
|
|