File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : [
3
+ {
4
+ "type" : " lldb" ,
5
+ "request" : " launch" ,
6
+ "sourceLanguages" : [
7
+ " swift"
8
+ ],
9
+ "name" : " Debug markdown-tool" ,
10
+ "program" : " ${workspaceFolder:swift-markdown}/.build/debug/markdown-tool" ,
11
+ "args" : [],
12
+ "cwd" : " ${workspaceFolder:swift-markdown}" ,
13
+ "preLaunchTask" : " swift: Build Debug markdown-tool"
14
+ },
15
+ {
16
+ "type" : " lldb" ,
17
+ "request" : " launch" ,
18
+ "sourceLanguages" : [
19
+ " swift"
20
+ ],
21
+ "name" : " Release markdown-tool" ,
22
+ "program" : " ${workspaceFolder:swift-markdown}/.build/release/markdown-tool" ,
23
+ "args" : [],
24
+ "cwd" : " ${workspaceFolder:swift-markdown}" ,
25
+ "preLaunchTask" : " swift: Build Release markdown-tool"
26
+ }
27
+ ]
28
+ }
Original file line number Diff line number Diff line change 2
2
#
3
3
# This source file is part of the Swift.org open source project
4
4
#
5
- # Copyright (c) 2021 Apple Inc. and the Swift project authors
5
+ # Copyright (c) 2021-2024 Apple Inc. and the Swift project authors
6
6
# Licensed under Apache License v2.0 with Runtime Library Exception
7
7
#
8
8
# See https://swift.org/LICENSE.txt for license information
@@ -18,7 +18,7 @@ here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18
18
19
19
function replace_acceptable_years() {
20
20
# this needs to replace all acceptable forms with 'YEARS'
21
- sed -e ' s/20[12][7890123 ]-20[12][890123 ]/YEARS/' -e ' s/20[12][890123 ]/YEARS/'
21
+ sed -e ' s/20[12][78901234 ]-20[12][8901234 ]/YEARS/' -e ' s/20[12][8901234 ]/YEARS/'
22
22
}
23
23
24
24
printf " => Checking for unacceptable language… "
You can’t perform that action at this time.
0 commit comments