File: 00_set_up_packaging_system.sh

package info (click to toggle)
psychopy 2020.2.10%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 44,056 kB
  • sloc: python: 119,649; javascript: 3,022; makefile: 148; sh: 125; xml: 9
file content (16 lines) | stat: -rwxr-xr-x 614 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

# Fail script immediately on any errors in external commands,
# and display each line as it gets executed.
set -ev

source ./travis/travis_retry.bash

travis_retry sudo apt-get update -qq
travis_retry sudo apt-get install -qq lsb-release
source /etc/lsb-release
echo ${DISTRIB_CODENAME}
wget -O- http://neuro.debian.net/lists/${DISTRIB_CODENAME}.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
wget -q -O- http://neuro.debian.net/_static/neuro.debian.net.asc | sudo apt-key add -
travis_retry sudo apt-get update -qq
sudo apt-cache policy  # What is actually available?