From dd01551bf6dc6f341531d067c8b86ae53af70039 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 26 Apr 2024 13:59:49 +0300 Subject: [PATCH] cleanup build.vsh --- build.vsh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.vsh b/build.vsh index 3085455da..60fd78e91 100644 --- a/build.vsh +++ b/build.vsh @@ -1,7 +1,5 @@ import os -output_folder_content := 'output/' + '*' - commit_res := os.execute('git ls-remote -h https://github.com/vlang/v.git refs/heads/master') latest_v_commit_hash := commit_res.output.all_before('\t')#[..7] println('Latest V master commit hash: ${latest_v_commit_hash}') @@ -12,7 +10,7 @@ os.chdir('docs_generator/')! os.system('v install') os.system('v run .') -os.system('mv ${output_folder_content} ../') +os.system('mv output/* ../') os.chdir('..')! os.system('git add .')