Skip to content

Commit

Permalink
Fix variable typo on tarball curl
Browse files Browse the repository at this point in the history
It was not being interpreted as a variable, but as a string instead
  • Loading branch information
otoayana committed Jul 29, 2023
1 parent f42d3a1 commit dcac607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function build_kernel {

echo "Building $variant kernel"

curl -LO tarball_url -o ${source_dir}/${variant}/${tarball_name}
curl -LO $tarball_url -o ${source_dir}/${variant}/${tarball_name}
tar xf ${source_dir}/${variant}/${tarball_name} -C ${source_dir}/${variant}/
cd $kernel_source_dir
patch -p1 < ../patches/${variant}/*
Expand Down

0 comments on commit dcac607

Please sign in to comment.