From d98166383c2306b7c465aeeba511995130dd95d0 Mon Sep 17 00:00:00 2001 From: Vincent Stumpf Date: Wed, 14 Jun 2023 07:19:05 +0000 Subject: [PATCH] Add .sh filetype to athena-start --- .gitignore | 2 +- athena-start | 3 ++- tools/CMakeLists.txt | 2 +- tools/{athena-start => athena-start.sh} | 0 4 files changed, 4 insertions(+), 3 deletions(-) rename tools/{athena-start => athena-start.sh} (100%) diff --git a/.gitignore b/.gitignore index 941c0466c3..c7566f3425 100644 --- a/.gitignore +++ b/.gitignore @@ -140,7 +140,7 @@ Thumbs.db /navigenerator.bat # Linux script tools -# /athena-start +/athena-start.sh # /function.sh # /install.sh # /uninstall.sh diff --git a/athena-start b/athena-start index 346fefdb79..221bb53f0e 100755 --- a/athena-start +++ b/athena-start @@ -224,4 +224,5 @@ case $1 in ;; esac - +echo "Using the configure scripts and ./athena-start is deprecated. Use CMake and ./athena-start.sh" 1>&2 +exit 1 diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index d5c59b3c24..09d28debef 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -28,7 +28,7 @@ if(WIN32) copy_to_source_dir("${WIN_FILES_TO_COPY}") else() set(LINUX_FILES_TO_COPY - "athena-start" + "athena-start.sh" "function.sh" "install.sh" "uninstall.sh" diff --git a/tools/athena-start b/tools/athena-start.sh similarity index 100% rename from tools/athena-start rename to tools/athena-start.sh