Skip to content

Commit 9847675

Browse files
fix #2647
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 76b3198 commit 9847675

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

scripts/nightly.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@ jobs:
9595
cd scripts
9696
python mk_nuget_task.py ../tmp $(z3Version) $(Build.SourceVersion)
9797
cd ..
98-
- task: NuGetCommand@2
99-
inputs:
100-
command: pack
101-
packagesToPack: scripts/out/*.nuspec
102-
packDestination: $(Build.ArtifactStagingDirectory)
103-
- task: NuGetCommand@2
104-
inputs:
105-
command: 'pack'
106-
packagesToPack: scripts/out/*.nuspec
107-
includesymbols: true
108-
packDestination: $(Build.ArtifactStagingDirectory)
98+
# - task: NuGetCommand@2
99+
# inputs:
100+
# command: pack
101+
# packagesToPack: scripts/out/*.nuspec
102+
# packDestination: $(Build.ArtifactStagingDirectory)
103+
# - task: NuGetCommand@2
104+
# inputs:
105+
# command: 'pack'
106+
# packagesToPack: scripts/out/*.nuspec
107+
# includesymbols: true
108+
# packDestination: $(Build.ArtifactStagingDirectory)
109109

110110
# Not available as a task?
111111
# - script: |

src/cmd_context/cmd_context.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2184,7 +2184,7 @@ void cmd_context::dt_eh::operator()(sort * dt, pdecl* pd) {
21842184
m_owner.insert(a);
21852185
}
21862186
}
2187-
if (!m_owner.m_scopes.empty()) {
2187+
if (!m_owner.m_scopes.empty() && !m_owner.m_global_decls) {
21882188
m_owner.pm().inc_ref(pd);
21892189
m_owner.m_psort_inst_stack.push_back(pd);
21902190
}

0 commit comments

Comments
 (0)