Skip to content

Commit a606152

Browse files
committed
update to LTS-13.13
1 parent d916b20 commit a606152

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

dds/src/DDS/Core.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@ getBuiltinReader name dp@(Participant idp)
287287
| not (isBuiltinTopic name) = error $ name ++ " is not a supported built-in topic"
288288
| otherwise = do
289289
builtinSub <- liftIO $ R.getBuiltinSubscriber idp
290-
Just ird <- liftIO $ R.lookupDataReader builtinSub name
290+
mird <- liftIO $ R.lookupDataReader builtinSub name
291291
tp <- findTopic 0.0 name dp
292-
return $ Reader (Subscriber dp builtinSub) tp (topicType tp) ird
292+
return $ Reader (Subscriber dp builtinSub) tp (topicType tp) (fromJust mird)
293293

294294
-- | This function yields the type definition for the topic
295295
topicType :: Topic a -> U.TopicType

stack.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
# resolver:
1616
# name: custom-snapshot
1717
# location: "./custom-snapshot.yaml"
18-
#resolver: nightly-2018-06-05
19-
resolver: lts-12.12
18+
#resolver: nightly-2018-10-21
19+
resolver: lts-13.13
2020

2121
# User packages to be built.
2222
# Various formats can be used as shown in the example below.
@@ -39,6 +39,9 @@ resolver: lts-12.12
3939
packages:
4040
- dds
4141
- dds-examples
42+
- cars
43+
- Fuj
44+
- FujOld
4245
# Dependency packages to be pulled from upstream that are not in the resolver
4346
# (e.g., acme-missiles-0.3)
4447
extra-deps: []

0 commit comments

Comments
 (0)