Skip to content

Commit

Permalink
fix: remove --dirty
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmmy committed Oct 15, 2023
1 parent 85daa1a commit aa0a1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function parseTsAliases() {
}

// Inject the git version into the build
const gitVersion = execSync("git describe --always --tags --dirty").toString().trim();
const gitVersion = execSync("git describe --always --tags").toString().trim();
process.env.VITE_GIT_VERSION = gitVersion;

// https://vitejs.dev/config/
Expand Down

0 comments on commit aa0a1a6

Please sign in to comment.