Skip to content

Commit

Permalink
RavenDB-8112 Create sh script installing deps required to run on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
gregolsky authored and ayende committed Aug 11, 2017
1 parent c6d9d59 commit 228356d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
File renamed without changes.
10 changes: 10 additions & 0 deletions install_runtime_prerequisites.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

if [[ $UID != 0 ]]; then
echo "Please run this script with sudo:"
echo "sudo $0 $*"
exit 1
fi

# install .netcore runtime dependencies
sudo apt-get install -y --no-install-recommends libunwind8 libicu55 libcurl3 ca-certificates

0 comments on commit 228356d

Please sign in to comment.