1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: make a process example compile with -prod

This commit is contained in:
Alexander Medvednikov
2021-02-07 05:23:45 +01:00
parent 2d875260e8
commit f589a70874
2 changed files with 1 additions and 8 deletions

View File

@ -3,10 +3,6 @@ module main
import os
fn exec(args []string) {
mut out := ''
mut line := ''
mut line_err := ''
os.execve('/bin/bash', args, []) or {
// eprintln(err)
panic(err)