ci: force println_os_executable.vv to have a stable output on all OSes

pull/8593/head^2
Delyan Angelov 2021-02-05 20:00:20 +02:00
parent e1052a5ec7
commit 99822e51de
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ import os
fn main() {
x := os.args[0]
last_segment := x.replace('\\', '/').all_after('vlib/v/tests/skip_unused/')
last_segment := x.replace('\\', '/').all_after('vlib/v/tests/skip_unused/').replace('.exe', '')
println(last_segment)
}