mirror of https://git.citron-emu.org/citron/emu
11 lines
292 B
Bash
Executable File
11 lines
292 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
# SPDX-FileCopyrightText: 2019 citron Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`"
|
|
GITREV="`git show -s --format='%h'`"
|
|
ARTIFACTS_DIR="$PWD/artifacts"
|
|
|
|
mkdir -p "${ARTIFACTS_DIR}/"
|