Skip to content

Commit

Permalink
Merge pull request #97 from JohannesGarm/main
Browse files Browse the repository at this point in the history
Rework package import
  • Loading branch information
krihal authored Feb 8, 2024
2 parents d3bc088 + c417ca7 commit 807de1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion util/clixon_controller_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ install_modules() {
mkdir -p ${CLIXON_MODULES}
chown clicon:clicon ${CLIXON_MODULES}
fi
find $SOURCE_PATH -name "*.py" -exec cp {} $CLIXON_MODULES \;
cd $SOURCE_PATH/
find ./. -name "*.py" ! -name "test_*" -exec cp --parent {} $CLIXON_MODULES \;
echo ""
}

Expand Down

0 comments on commit 807de1c

Please sign in to comment.