Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
go2sujeet
/
gradio-parking
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
126e13d
gradio-parking
/
.husky
/
pre-commit
go2sujeet
Added .history and node_modules/ to .gitignore
80a32bf
11 months ago
raw
Copy download link
history
blame
Safe
157 Bytes
#!/bin/sh
# Increment version number
version=$(
cat
version.txt)
new_version=$(
echo
$version
+ 0.01 | bc)
echo
$new_version
> version.txt
git add version.txt