Skip to content

Commit

Permalink
[MINOR] Packaging update for 0.2-rc2
Browse files Browse the repository at this point in the history
Adding the new run-python.sh script to the binary release artifacts
  • Loading branch information
corepointer committed Jul 5, 2023
1 parent d0ab6a6 commit bcd7902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ if [[ $? == 0 ]];then
mkdir -p "$PACK_ROOT"/{api,bin}
cp -a "$projectRoot"/src/api/python "$PACK_ROOT"/api/
cp -a "$projectRoot"/bin/{daphne,DistributedWorker} "$PACK_ROOT"/bin/
cp -a "$projectRoot"/run-daphne.sh "$PACK_ROOT"/
cp -a "$projectRoot"/run-*.sh "$PACK_ROOT"/
# this assumes that the pack script is run from an environment that has third party deps in /usr/local
# e.g. the daphne-dev docker container
cp -a /usr/local/lib/lib*.so* "$PACK_ROOT/lib"
Expand Down
2 changes: 1 addition & 1 deletion src/api/internal/daphne_internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void parseScriptArgs(const llvm::cl::list<string>& scriptArgsCli, unordered_map<
void printVersion(llvm::raw_ostream& os) {
// TODO Include some of the important build flags into the version string.
os
<< "DAPHNE Version 0.2-rc1\n"
<< "DAPHNE Version 0.2-rc2\n"
<< "An Open and Extensible System Infrastructure for Integrated Data Analysis Pipelines\n"
<< "https://github.com/daphne-eu/daphne\n";
}
Expand Down

0 comments on commit bcd7902

Please sign in to comment.