Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
19 řádky
399 B
Bash
19 řádky
399 B
Bash
#!/bin/bash
|
|
set -x #echo on
|
|
cabal sandbox init
|
|
|
|
cd hask-irc-core
|
|
cabal sandbox init --sandbox=../.cabal-sandbox
|
|
cd ..
|
|
|
|
cd hask-irc-handlers
|
|
cabal sandbox init --sandbox=../.cabal-sandbox
|
|
cabal sandbox add-source ../hask-irc-core/
|
|
cd ..
|
|
|
|
cd hask-irc-runner
|
|
cabal sandbox init --sandbox=../.cabal-sandbox
|
|
cabal sandbox add-source ../hask-irc-core/
|
|
cabal sandbox add-source ../hask-irc-handlers/
|
|
cd ..
|