Skip to content

Commit

Permalink
chore: Update script for WSL build
Browse files Browse the repository at this point in the history
  • Loading branch information
vasylskorych committed Jul 11, 2024
1 parent 35c4c6b commit 3528a98
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/copy_to_home.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@
# Copyright (c) 2023, DyssolTEC GmbH. All rights reserved.
# This file is part of Dyssol. See LICENSE file for license information.

rsync -av --exclude=.git --exclude=.vs --exclude=build --exclude=Documentation/sources --exclude=DyssolConsole/cache --exclude=DyssolInstallers/Compiler --exclude=DyssolInstallers/Installers --exclude=ExternalLibraries --exclude=install --exclude=Win32 --exclude=x64 /mnt/d/Codes/dyssol ~/
# Absolute path to this script, e.g. /home/user/bin/script.sh
SCRIPT=$(readlink -f "$0")
# Absolute path this script is in, thus /home/user/bin
SCRIPTPATH=$(dirname "$SCRIPT")
# Run copy
rsync -av --exclude=.git --exclude=.vs --exclude=build --exclude=Documentation/sources --exclude=DyssolConsole/cache --exclude=DyssolInstallers/Compiler --exclude=DyssolInstallers/Installers --exclude=ExternalLibraries --exclude=install --exclude=Win32 --exclude=x64 ${SCRIPTPATH}/../ ~/dyssol/

0 comments on commit 3528a98

Please sign in to comment.