From: Daniel Wagner Date: Fri, 23 Jun 2023 07:01:45 +0000 (+0200) Subject: scripts: Move helper scripts to a central place X-Git-Tag: v2.5~12 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2239cfa0825054c8e94c6fb8304f6cac14ff82dc;p=users%2Fsagi%2Fnvme-cli.git scripts: Move helper scripts to a central place The helper scripts for maintaining are distributed over several directories. Let's move them to the scripts directory. Signed-off-by: Daniel Wagner --- diff --git a/meson.build b/meson.build index deb3b9c5..9a079215 100644 --- a/meson.build +++ b/meson.build @@ -37,7 +37,7 @@ version_tag = get_option('version-tag') if version_tag != '' conf.set('GIT_VERSION', '"@0@"'.format(version_tag)) else - r = run_command('meson-vcs-tag.sh', + r = run_command('scripts/meson-vcs-tag.sh', meson.current_source_dir(), meson.project_version(), check: true) diff --git a/meson-vcs-tag.sh b/scripts/meson-vcs-tag.sh similarity index 100% rename from meson-vcs-tag.sh rename to scripts/meson-vcs-tag.sh diff --git a/regress b/scripts/regress similarity index 100% rename from regress rename to scripts/regress diff --git a/release.sh b/scripts/release.sh similarity index 100% rename from release.sh rename to scripts/release.sh diff --git a/Documentation/update-docs.sh b/scripts/update-docs.sh similarity index 100% rename from Documentation/update-docs.sh rename to scripts/update-docs.sh