From a956c30bd7c6ced1272a6145169d41cd2227f8b1 Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 13 Aug 2024 20:40:17 +0200 Subject: [PATCH] tools: debs: download fpc trunk --- tools/install/create_fpc_export_tgz.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/install/create_fpc_export_tgz.sh b/tools/install/create_fpc_export_tgz.sh index 3543c9766c..27cc28aa5b 100755 --- a/tools/install/create_fpc_export_tgz.sh +++ b/tools/install/create_fpc_export_tgz.sh @@ -27,11 +27,12 @@ fi TmpFPCDir=$TmpDir/fpc FPCTGZ=$TmpDir/fpc.tgz if [ "x$Download" = "xyes" ]; then - echo "downloading fpc svn ..." + echo "downloading fpc git ..." rm -rf $TmpFPCDir mkdir -p $TmpDir cd $TmpDir - git clone https://gitlab.com/freepascal.org/fpc/build.git $TmpFPCDir + git clone https://gitlab.com/freepascal.org/fpc/source.git $TmpFPCDir + rm -rf $TmpFPCDir/.git* cd - else echo "extracting fpc from local git ..."