From 7927e4853aea78c0f727302ae483f4170d1f92b4 Mon Sep 17 00:00:00 2001 From: Uwe Fechner Date: Fri, 23 Aug 2024 23:02:13 +0200 Subject: [PATCH] fix warnings --- test/test_release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_release b/test/test_release index 42d6496..7c6ed52 100755 --- a/test/test_release +++ b/test/test_release @@ -8,9 +8,9 @@ export JULIA_DEPOT_PATH="~/julia_tmp" mkdir int_test cd int_test echo "Installing KiteSimulators and ControlPlots..." -julia --project="." -e "using Pkg; pkg\"add KiteSimulators\"; pkg\"add ControlPlots\"" +julia --project="." -e "using Pkg; Pkg.add(\"KiteSimulators\"); Pkg.add(\"ControlPlots\")" echo "Installing Timers..." -julia --project -e "using Pkg; pkg\"add Timers\"" +julia --project -e "using Pkg; Pkg.add(\"Timers\")" echo "Instializing the project..." julia --project -e "using KiteSimulators; init_project()" echo "Creating the system image..."