1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 12:21:00 -05:00

Remove commit timestamps

This commit is contained in:
AnxietyisReal 2023-09-30 10:42:09 +10:00
parent 5676f69115
commit fed9a887a2

View File

@ -15,11 +15,6 @@ function commitHashes() {
const remoteHash = execSync('git ls-remote origin HEAD').toString().split('\t')[0].slice(0, 7);
return { localHash, remoteHash };
}
function commitTimestamp() {
const localTimestamp = execSync('git log -1 --format=%ct').toString().trimEnd();
const remoteTimestamp = execSync('git show -s --format=%ct').toString().trimEnd();
return { localTimestamp, remoteTimestamp };
}
export default {
async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
@ -58,8 +53,8 @@ export default {
embed.addFields(
{
name: '> __Repository__', value: MessageTool.concatMessage(
`**Local:** ${commitHashes().localHash} <t:${commitTimestamp().localTimestamp}:R>`,
`**Remote:** ${commitHashes().remoteHash} <t:${commitTimestamp().remoteTimestamp}:R>`
`**Local:** ${commitHashes().localHash}`,
`**Remote:** ${commitHashes().remoteHash}`
)
},
{name: '> __Dependencies__', value: MessageTool.concatMessage(