mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
message: use uniform message reference format
This commit is contained in:
@ -21,7 +21,7 @@ fn main() {
|
||||
if !result.output.contains('Permission denied') {
|
||||
err = '\n$result.output'
|
||||
}
|
||||
eprintln('cannot compile to ‘$vroot: $err')
|
||||
eprintln('cannot compile to `$vroot`: $err')
|
||||
exit(1)
|
||||
}
|
||||
if result.output.len > 0 {
|
||||
|
@ -17,7 +17,7 @@ fn main() {
|
||||
|
||||
if git_result.exit_code != 0 {
|
||||
if git_result.output.contains('Permission denied') {
|
||||
eprintln('have no access ‘$vroot: Permission denied')
|
||||
eprintln('have no access `$vroot`: Permission denied')
|
||||
} else {
|
||||
eprintln(git_result.output)
|
||||
}
|
||||
@ -29,8 +29,8 @@ fn main() {
|
||||
current_hash := util.githash(true)
|
||||
// println(v_hash)
|
||||
// println(current_hash)
|
||||
if v_hash == current_hash {
|
||||
return
|
||||
if v_hash == current_hash {
|
||||
return
|
||||
}
|
||||
|
||||
$if windows {
|
||||
|
Reference in New Issue
Block a user