mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Fix missing dependencies and repositories, make the makefile exit with 1 if ISO file wasn't built.
10 lines
280 B
Bash
Executable File
10 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BUILD_DIR=$(scripts/query-json build/build-config.json build_dir)
|
|
BUILD_ARCH=$(scripts/query-json build/build-config.json architecture)
|
|
VERSION=$(cat $BUILD_DIR/version)
|
|
|
|
ln -rnsf $BUILD_DIR/live-image-$BUILD_ARCH.hybrid.iso $BUILD_DIR/vyos-$VERSION-$BUILD_ARCH.iso
|
|
|
|
|