Skip to content

Commit a24f932

Browse files
authored
Merge pull request #5 from fagiani/fix-prepend-typo
Fix prepend file extension
2 parents b6aec03 + c94be19 commit a24f932

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ echo -n "$apt_layer/usr/bin:$PATH" > $apt_env_dir/PATH.prepend
121121
echo -n "$apt_layer/usr/lib/x86_64-linux-gnu:$apt_layer/usr/lib/i386-linux-gnu:$apt_layer/usr/lib" > $apt_env_dir/LD_LIBRARY_PATH.prepend
122122
echo -n "$apt_layer/usr/lib/x86_64-linux-gnu:$apt_layer/usr/lib/i386-linux-gnu:$apt_layer/usr/lib" > $apt_env_dir/LIBRARY_PATH.prepend
123123
echo -n "$apt_layer/usr/include:$apt_layer/usr/include/x86_64-linux-gnu" > $apt_env_dir/INCLUDE_PATH.prepend
124-
cp $apt_env_dir/INCLUDE_PATH $apt_env_dir/CPATH.prepend
125-
cp $apt_env_dir/INCLUDE_PATH $apt_env_dir/CPPPATH.prepend
124+
cp $apt_env_dir/INCLUDE_PATH.prepend $apt_env_dir/CPATH.prepend
125+
cp $apt_env_dir/INCLUDE_PATH.prepend $apt_env_dir/CPPPATH.prepend
126126
echo -n "$apt_layer/usr/lib/x86_64-linux-gnu/pkgconfig:$apt_layer/usr/lib/i386-linux-gnu/pkgconfig:$apt_layer/usr/lib/pkgconfig" > $apt_env_dir/PKG_CONFIG_PATH.prepend
127127

128128
echo -n ":" > $apt_env_dir/PATH.delim

buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.4"
22

33
[buildpack]
44
id = "fagiani/apt"
5-
version = "0.2.0"
5+
version = "0.2.1"
66
name = "apt Packages Buildpack"
77
homepage = "https://github.com/fagiani/apt-buildpack"
88
description = "Installs apt packages for further builds and runtime"

0 commit comments

Comments
 (0)