Skip to content

Commit

Permalink
minor updates to get build working better
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-freeman committed May 22, 2018
1 parent da2b785 commit e54c8cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions elm/elm-make-all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/bash
set -e
pushd ~/place/elm
elm-make Place.elm --output ../web/place.js
cd plugins
elm-make AlazarTech.elm --output ../../web/plugins/alazartech.js
Expand All @@ -20,4 +19,4 @@ elm-make TektronixMDO3014.elm --output ../../web/plugins/tektronix_mdo3014.js
elm-make XPSControl.elm --output ../../web/plugins/xps_control.js
elm-make ArduinoStage.elm --output ../../web/plugins/arduino_stage.js
elm-make MokuLab.elm --output ../../web/plugins/mokulab.js
popd
cd ..
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ source:
path: .

build:
number: 49
number: 51

requirements:
build:
Expand Down
5 changes: 4 additions & 1 deletion place/plugins/alazartech/alazartech.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
import numpy as np

from place.plugins.instrument import Instrument
from . import atsapi as ats
try:
from . import atsapi as ats
except OSError:
from . import dummy_atsapi as ats
setattr(ats, 'TRIG_FORCE', -1)

class ATSGeneric(Instrument, ats.Board):
Expand Down

0 comments on commit e54c8cc

Please sign in to comment.