my node build completed with no issues. following the doc, i ran the next set of commands which failed. any ideas?
cp -p “$(./scripts/bin-path.sh cardano-node)” ~/.local/bin
-bash: ./scripts/bin-path.sh: No such file or directory
cp: cannot stat ‘’: No such file or directory
the script bin-path.sh only available with 1.27.0 version
but first verify that you have the executable by calling it with full path like: /home/user/.local/bin/cardano-node version
if you got back the version, that it is ok - and what you need is this step:
Verify that ~/.local/bin is in your PATH:
echo $PATH
If ~/.local/bin is not in the PATH, you need to add the following line to your .bashrc file
export PATH="~/.local/bin:$PATH"
and source the file:
source .bashrc
good - so if that is a directory that something went wrong during the copy of binaries… so remove the directories like rm -rf ~/.local/bin/cardano-node
and try again this step: