Skip to content

Commit

Permalink
Added sudo-less install for cygwin builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Snaipe committed Apr 15, 2015
1 parent f98f136 commit 09b7bdc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .ci/install-libcsptr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ git clone --branch ${tag} --depth 1 ${repo} dependencies/libcsptr &&
./autogen.sh &&
./configure --prefix=/usr &&
make &&
sudo make install
{
if command -v sudo; then
sudo make install
else
make install
fi
}
)
rm -Rf dependencies

0 comments on commit 09b7bdc

Please sign in to comment.