Fixing deploy and version for clippy.

This commit is contained in:
Dessalines 2020-01-02 10:34:40 -05:00
parent f0db3084d8
commit dc331d5293
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ cd ../../
echo "export let version: string = '$(git describe --tags)';" > "ui/src/version.ts"
git add "ui/src/version.ts"
# Setting the version on the backend
echo "pub const VERSION: &'static str = \"$(git describe --tags)\";" > "server/src/version.rs"
echo "pub const VERSION: &str = \"$(git describe --tags)\";" > "server/src/version.rs"
git add "server/src/version.rs"
cd docker/dev

View file

@ -1 +1 @@
pub const VERSION: &'static str = "v0.5.13";
pub const VERSION: &str = "v0.5.13";