Don't link to github if fake commit hash

pull/375/head
Lim Chee Aun 2023-12-25 20:05:56 +08:00
rodzic 976f0a5592
commit a539cfea0a
2 zmienionych plików z 16 dodań i 11 usunięć

Wyświetl plik

@ -576,17 +576,19 @@ function Settings({ onClose }) {
}
}}
/>{' '}
<span class="ib insignificant">
(
<a
href={`https://github.com/cheeaun/phanpy/commit/${__COMMIT_HASH__}`}
target="_blank"
rel="noopener noreferrer"
>
<RelativeTime datetime={new Date(__BUILD_TIME__)} />
</a>
)
</span>
{!__FAKE_COMMIT_HASH__ && (
<span class="ib insignificant">
(
<a
href={`https://github.com/cheeaun/phanpy/commit/${__COMMIT_HASH__}`}
target="_blank"
rel="noopener noreferrer"
>
<RelativeTime datetime={new Date(__BUILD_TIME__)} />
</a>
)
</span>
)}
</p>
)}
</section>

Wyświetl plik

@ -17,12 +17,14 @@ const {
const now = new Date();
let commitHash;
let fakeCommitHash = false;
try {
commitHash = execSync('git rev-parse --short HEAD').toString().trim();
} catch (error) {
// If error, means git is not installed or not a git repo (could be downloaded instead of git cloned)
// Fallback to random hash which should be different on every build run 🤞
commitHash = uid();
fakeCommitHash = true;
}
const rollbarCode = fs.readFileSync(
@ -38,6 +40,7 @@ export default defineConfig({
define: {
__BUILD_TIME__: JSON.stringify(now),
__COMMIT_HASH__: JSON.stringify(commitHash),
__FAKE_COMMIT_HASH__: fakeCommitHash,
},
server: {
host: true,