-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: path to the built openvasd and scannerctl binaries
Also, fix path to openvasd readme. File paths changed after internal structure changes.
- Loading branch information
1 parent
62b9391
commit 5a68cb7
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
``` | ||
mkdir -p $INSTALL_DIR/openvasd/usr/local/bin | ||
cd $SOURCE_DIR/openvas-scanner-$OPENVAS_DAEMON/rust/openvasd | ||
cd $SOURCE_DIR/openvas-scanner-$OPENVAS_DAEMON/rust/src/openvasd | ||
cargo build --release | ||
cd $SOURCE_DIR/openvas-scanner-$OPENVAS_DAEMON/rust/scannerctl | ||
cd $SOURCE_DIR/openvas-scanner-$OPENVAS_DAEMON/rust/src/scannerctl | ||
cargo build --release | ||
sudo cp -v ../target/release/openvasd $INSTALL_DIR/openvasd/usr/local/bin/ | ||
sudo cp -v ../target/release/scannerctl $INSTALL_DIR/openvasd/usr/local/bin/ | ||
sudo cp -v ../../target/release/openvasd $INSTALL_DIR/openvasd/usr/local/bin/ | ||
sudo cp -v ../../target/release/scannerctl $INSTALL_DIR/openvasd/usr/local/bin/ | ||
sudo cp -rv $INSTALL_DIR/openvasd/* / | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters