Fix move command in build-tests.yml
parent
35cda863ec
commit
3e3a06e781
|
|
@ -112,7 +112,7 @@ jobs:
|
||||||
###########################
|
###########################
|
||||||
- name: Set Scripting Backend To il2cpp
|
- name: Set Scripting Backend To il2cpp
|
||||||
run: |
|
run: |
|
||||||
move /y ./test-project/ProjectSettings/ProjectSettingsWindows.asset ./test-project/ProjectSettings/ProjectSettings.asset
|
move /Y .\test-project\ProjectSettings\ProjectSettingsWindows.asset .\test-project\ProjectSettings\ProjectSettings.asset
|
||||||
|
|
||||||
###########################
|
###########################
|
||||||
# Build #
|
# Build #
|
||||||
|
|
|
||||||
|
|
@ -2727,6 +2727,7 @@ class Versioning {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const numberOfCommitsAsString = yield system_1.default.run('sh', undefined, {
|
const numberOfCommitsAsString = yield system_1.default.run('sh', undefined, {
|
||||||
input: Buffer.from('git tag --list --merged HEAD | grep v[0-9]* | wc -l'),
|
input: Buffer.from('git tag --list --merged HEAD | grep v[0-9]* | wc -l'),
|
||||||
|
cwd: this.projectPath,
|
||||||
silent: false,
|
silent: false,
|
||||||
});
|
});
|
||||||
const numberOfCommits = Number.parseInt(numberOfCommitsAsString, 10);
|
const numberOfCommits = Number.parseInt(numberOfCommitsAsString, 10);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue