In every stored proc check if it already exists:
IF OBJECT_ID('MySproc') IS NOT NULL
DROP PROC MySproc
GO
CREATE PROC MySproc
AS
BEGIN
...
END